dotConnect for PostgreSQL Documentation
Devart.Data.PostgreSql Namespace / PgSqlBlob Class / PgSqlBlob Constructor / PgSqlBlob Constructor(Byte[])
The byte array to be stored in the Value property.
Example

In This Topic
    PgSqlBlob Constructor(Byte[])
    In This Topic
    Initializes a new instance of the PgSqlBlob class, setting the Value property to the provided array of bytes.
    Syntax
    'Declaration
     
    Public Function New( _
       ByVal value() As Byte _
    )
    public PgSqlBlob( 
       byte[] value
    )

    Parameters

    value
    The byte array to be stored in the Value property.
    Example
    byte[] byteArray = { 1, 2, 3, 4, 5};
    PgSqlBlob blob1 = new PgSqlBlob(byteArray);
    Dim byteArray As Byte() = New Byte() {1, 2, 3, 4, 5}
    Dim blob1 As New PgSqlBlob(byteArray)
    See Also